home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000212_news@newsmaster….columbia.edu _Sun May 18 14:20:26 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA17033
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 18 May 1997 14:20:25 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA26956
  7.     for kermit.misc@watsun; Sun, 18 May 1997 14:20:25 -0400 (EDT)
  8. Path: news.columbia.edu!panix!news.eecs.umich.edu!news.mathworks.com!howland.erols.net!newsfeed.internetmci.com!news.wwa.com!not-for-mail
  9. From: Jim Jacobus <jjacobus@wwa.com>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Script Input Error
  12. Date: Sun, 18 May 1997 13:19:03 -0500
  13. Organization: PonyXPress Horse Transport
  14. Lines: 35
  15. Message-ID: <337F4817.6DC2@wwa.com>
  16. References: <337DC0C3.5D6B@wwa.com> <5lkfi2$48t$1@newsmaster.cc.columbia.edu> <Oohfz4qd5rpS089yn@xmission.com>
  17. NNTP-Posting-Host: pool8-022.wwa.com
  18. Mime-Version: 1.0
  19. Content-Type: text/plain; charset=us-ascii
  20. Content-Transfer-Encoding: 7bit
  21. X-Mailer: Mozilla 3.01 (Win95; I)
  22. To: Jim Janney <jjanney@xmission.com>
  23. Xref: news.columbia.edu comp.protocols.kermit.misc:7050
  24.  
  25. Jim Janney wrote:
  26. > In article <337DC0C3.5D6B@wwa.com>, Jim Jacobus  <jjacobus@wwa.com> wrote:
  27. > > I'm trying to write a telnet script using VMS C-kermit 6.0.192 to
  28. > > connect to a NT system. NT system uses the Pragma s/w for telent
  29. > > emulation.
  30. > >
  31. > > I can't get a response back from my script. I have an
  32. > > "input 5 login:" which should work, but I always get an error from
  33. > > my VMS Kermit:
  34. > > ? Can't condition line for INPUT
  35. > >
  36. > > What does this error mean. Is it documented in the Using C-Kermit
  37. > > manual?
  38. > FWIW, I got the exact same error writing my first Kermit telnet
  39. > script.  The problem was that I was using the 'telnet' command to
  40. > connect, e.g.
  41. >    telnet bix.com
  42. >    input 5 login
  43. > When I changed this to
  44. >    set network tcp/ip
  45. >    set host bix.com
  46. >    input 5 login
  47. > it started to work as I had intended.
  48. > --
  49. > Jim Janney  jjanney@xmission.com, jjanney@bix.com
  50.  
  51.  
  52. ohmygosh! That worked. Thanks. -- Jim